home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / maintest.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.1 KB  |  29 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef maintestH
  7. #define maintestH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include "srvr_tlb.h"
  14. //---------------------------------------------------------------------------
  15. class TForm2 : public TForm
  16. {
  17. __published:    // IDE-managed Components
  18.         TButton *Button1;
  19.         void __fastcall Button1Click(TObject *Sender);
  20. private:    // User declarations
  21.        TCOMIMyAuto MyAutoServer;
  22. public:        // User declarations
  23.         __fastcall TForm2(TComponent* Owner);
  24. };
  25. //---------------------------------------------------------------------------
  26. extern PACKAGE TForm2 *Form2;
  27. //---------------------------------------------------------------------------
  28. #endif
  29.